734dbe2e58c0f0e7cb771ce16a399241420980f9,server/sonar-server/src/main/java/org/sonar/server/platform/ws/SystemWs.java,SystemWs,define,#Context#,33

Before Change



  @Override
  public void define(Context context) {
    NewController controller = context.createController("api/system");

    for (SystemWsAction action : actions) {
      action.define(controller);

After Change



  @Override
  public void define(Context context) {
    NewController controller = context.createController("api/system")
      .setDescription("Get system details, and perform some management actions, such as restarting, and initiating a database migration (as part of a system upgrade).");

    for (SystemWsAction action : actions) {
      action.define(controller);